home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / gtdce11.zip / CHECKDCE.BAT next >
DOS Batch File  |  1992-04-04  |  542b  |  40 lines

  1. @echo off
  2. gtdce
  3. if errorlevel 144 goto 14400
  4. if errorlevel 96 goto 9600
  5. if errorlevel 24 goto 2400
  6. if errorlevel 12 goto 1200
  7. if errorlevel 3 goto 300
  8. goto end
  9.  
  10. :14400
  11. echo.
  12. echo The caller's DCE bbaud rate is 14400.
  13. echo.
  14. goto end
  15.  
  16. :9600
  17. echo.
  18. echo The caller's DCE baud rate is 9600.
  19. echo.
  20. goto end
  21.  
  22. :2400
  23. echo.
  24. echo The caller's DCE baud rate is 2400.
  25. echo.
  26. goto end
  27.  
  28. :1200
  29. echo.
  30. echo The caller's DCE baud rate is 1200.
  31. echo.
  32. goto end
  33.  
  34. :300
  35. echo.
  36. echo The caller's DCE baud rate is 300.
  37. echo.
  38.  
  39. :end
  40.